home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
c80tcog.lbr
/
ERROR.C
< prev
next >
Wrap
Text File
|
1985-08-09
|
384b
|
22 lines
/* error - 3 small routines that crop up in Software Tools */
cant(name) /* can't open file message */
char *name;
{
remark(name);
error(": can't open.");
} /* end cant */
error(msg) /* display error message, then exit */
char *msg;
{
remark(msg);
exit();
}
remark(msg) /* display error message, then continue */
char *msg;
{
fputs(msg, STDERR);
}